C# regex replace all spaces with blank

62

C# regex replace all spaces with blank -

LastName = Regex.Replace(LastName, @"\s+", "");

Comments

Submit
0 Comments